Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632080 Views

Latest files of /cody/vishal-dcode/Sound Board

app.js cody/vishal-dcode/Sound Board/app.js
3 Views
0 Comments
// Define an array of sound names
const sounds = ["applause", "boo", "gasp", "tado", "victory", "wrong"];

// Create a button for each sound and attach a click event listener to it
sounds.forEach((sound) => {
// Create a new button element and add a CSS class
const btn = document.createElement("button");
btn.classList.add("btn");
style.css cody/vishal-dcode/Sound Board/style.css
4 Views
0 Comments
* {
margin: 0;
font-family: "Poppins";
}
body {
background-color: #121212;
color: #fff;
height: 100vh;
index.html cody/vishal-dcode/Sound Board/index.html
11 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link